home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / otm3d095 / sin.h < prev   
C/C++ Source or Header  |  1994-12-12  |  233b  |  23 lines

  1. #ifndef _SIN_H
  2. #define _SIN_H
  3.  
  4. #ifndef PI
  5. #define PI 3.14592654
  6. #define SINSHIFT 8
  7. #endif
  8.  
  9. int zDSin(int deg);
  10.  
  11. int zRSin(double rad);
  12.  
  13. int zDCos(int deg);
  14.  
  15. int zRCos(double rad);
  16.  
  17. void initSinCos();
  18.  
  19.  
  20. #endif
  21.  
  22.  
  23.